home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <condefs.h>
- #include <conio.h>
- #include <iostream.h>
- #pragma hdrstop
-
- //---------------------------------------------------------------------------
- int main(int argc, char **argv)
- {
- cout << "argc = " << argc << endl;
- for (int i=0;i<argc;i++)
- cout << "Parameter " << i << ": " << argv[i] << endl;
- cout << endl << "Press any key to continue...";
- getch();
- return 0;
- }
- //---------------------------------------------------------------------------
-
-